This AppleScript will copy all currently visible backlinks to the clipboard. To load the
backlinks for a particular page, open the page and hit Shift-Command-B. It may take
Voodoopad a few moments to find all of the backlinks for your page. Wait for the progress
indicator to disappear before using this script.
tell application "System Events"
set theBacklinks to value of text field of every row of table of scroll area of tab group of drawer of window of process "VoodooPad" as list
set AppleScript's text item delimiters to return
set the clipboard to theBacklinks as text
set AppleScript's text item delimiters to ""
end tell
Script submitted by – mike [dot] com [at] mac [dot] com